os.Process.state (field)

11 uses

	os (current package)
		exec.go#L88: 	state atomic.Uint64
		exec.go#L120: 	p.state.Store(1) // 1 persistent reference
		exec.go#L132: 	p.state.Store(uint64(statusDone)) // No persistent reference, as there is no handle.
		exec.go#L143: 		refs := p.state.Load()
		exec.go#L148: 		if !p.state.CompareAndSwap(refs, new) {
		exec.go#L161: 		state := p.state.Load()
		exec.go#L179: 		if !p.state.CompareAndSwap(state, new) {
		exec.go#L200: 		refs := p.state.Load()
		exec.go#L216: 		if !p.state.CompareAndSwap(refs, new) {
		exec.go#L231: 	return processStatus(p.state.Load())
		exec.go#L247: 	p.state.CompareAndSwap(0, uint64(reason))